Description : Role and usage of `@import` in SASS.
Answer :
`@import` is used inSASS to include and reuse styles from other files, promoting modularity and organization. It helps in breaking down large stylesheets into smaller, manageable files. For example,`@import 'base';` includes the `base.scss` file, allowing you to structure your styles logically and keep your main stylesheet concise.